home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 139 / 139.xpi / chrome / imagezoom.jar / content / customdim.xul < prev    next >
Extensible Markup Language  |  2010-01-04  |  2KB  |  47 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.     
  4.     Copyright (c) 2006-2010  Jason Adams <imagezoom@yellowgorilla.net>
  5.     
  6.     This file is part of Image Zoom.
  7.  
  8.     Image Zoom is free software; you can redistribute it and/or modify
  9.     it under the terms of the GNU General Public License as published by
  10.     the Free Software Foundation; either version 2 of the License, or
  11.     (at your option) any later version.
  12.  
  13.     Image Zoom is distributed in the hope that it will be useful,
  14.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.     GNU General Public License for more details.
  17.  
  18.     You should have received a copy of the GNU General Public License
  19.     along with Image Zoom; if not, write to the Free Software
  20.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21.  
  22. ***** END LICENSE BLOCK ***** -->
  23. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  24.  
  25. <!DOCTYPE window SYSTEM "chrome://net.yellowgorilla.imagezoom/locale/imageZoom.dtd">
  26.  
  27.  
  28. <dialog buttons="accept, cancel"
  29.         id="imagezoom-customdim-dialog"
  30.         ondialogaccept="imagezoom_customDim()"
  31.         onload="imagezoom_loadCustomDim()"
  32.         title="&iz.customdim.title;"
  33.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  34.  
  35.     <script type="application/x-javascript" src="chrome://net.yellowgorilla.imagezoom/content/dialogs.js"/>
  36.  
  37.     <vbox flex="1">
  38.           <hbox>
  39.           <label value="&iz.customdim.width.label;"/>          
  40.           <textbox id="dimWidth" size="2" onkeypress="return validateKeyPress(event);" oninput="widthInput(event);"/>
  41.           <label value="&iz.customdim.height.label;"/>          
  42.           <textbox id="dimHeight" size="2" onkeypress="return validateKeyPress(event);" oninput="heightInput(event);"/>          
  43.           </hbox>
  44.           <checkbox id="dimAspect" class="indent" style="margin-top:5px;" label="&iz.customdim.aspect.label;" onclick="checkInput(event);"/>
  45.     </vbox>
  46. </dialog>
  47.